home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML Instance.sea / XML Instance / Required / plugins / HTMLWindow.jar / horst / HTMLPaneProperties.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-03-18  |  1.7 KB  |  37 lines

  1. package horst;
  2.  
  3. import java.awt.Font;
  4. import java.awt.print.PageFormat;
  5. import java.awt.print.PrinterJob;
  6. import java.net.URL;
  7. import java.util.Vector;
  8. import javax.swing.JPopupMenu;
  9.  
  10. public class HTMLPaneProperties {
  11.    Vector m_linkListeners = new Vector();
  12.    Vector m_statusListeners = new Vector();
  13.    URL m_loadedPage;
  14.    JPopupMenu m_popup;
  15.    int m_lastPortWidth = -1;
  16.    int m_lastPortHeight = -1;
  17.    int m_marginWidth = 5;
  18.    int m_marginHeight = 5;
  19.    boolean m_bIsFrame;
  20.    boolean m_bIsIFrame;
  21.    boolean m_bUnderLineLinks = true;
  22.    boolean m_bDisplayBackgroundImage = true;
  23.    HTMLDocument m_frameBaseDocument;
  24.    String m_frameName;
  25.    FrameSetView m_framesetView;
  26.    Element m_rootElement;
  27.    Element m_focusElement;
  28.    int m_fontSize = 12;
  29.    Font m_defaultFont = new Font("Serif", 0, 14);
  30.    Vector m_floaters = new Vector();
  31.    HistoryManager m_history = new HistoryManager();
  32.    int m_printingLayoutWidth = 700;
  33.    PrintSpecs m_printSpecs = new PrintSpecs();
  34.    PrinterJob m_printJob;
  35.    PageFormat m_pageFormat = new PageFormat();
  36. }
  37.